home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2001 May / SGI IRIX Base Documentation 2001 May.iso / usr / share / catman / p_man / cat3 / f90 / conjg.z / conjg
Encoding:
Text File  |  1998-10-30  |  1.4 KB  |  46 lines

  1. CONJG(3M)                                              Last changed: 1-6-98
  2.  
  3.  
  4. NNAAMMEE
  5.      CCOONNJJGG - Computes conjugate of a complex number
  6.  
  7. SSYYNNOOPPSSIISS
  8.      CCOONNJJGG (([ZZ==]_z]))
  9.  
  10. IIMMPPLLEEMMEENNTTAATTIIOONN
  11.      UNICOS and UNICOS/mk systems
  12.  
  13. SSTTAANNDDAARRDDSS
  14.      Fortran 90
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      CCOONNJJGG returns the complex conjugate of a complex number.  CCOONNJJGG is an
  18.      elemental function for the CF90 compiler.
  19.  
  20.      This function evaluates _y = _x  - _i_x .
  21.                                   _r     _i
  22.    AArrgguummeenntt RRaannggee                                       2450
  23.      |_x |, |_x | < infinity (infinity is approximately 10    )
  24.        _r     _i
  25.                                                        308
  26.      On UNICOS/mk systems, infinity is approximately 10
  27.  
  28. NNOOTTEESS
  29.      The name of this intrinsic can be passed as an argument.
  30.  
  31. EEXXAAMMPPLLEESS
  32.      The following program gives RREESSUULLTT==((33..00,,--44..00)):
  33.  
  34.           PROGRAM CONTEST
  35.           COMPLEX ARG, RESULT
  36.           ARG=(3.0,4.0)
  37.           RESULT=CONJG(ARG)
  38.           PRINT *,RESULT
  39.           STOP
  40.           END
  41.  
  42. SSEEEE AALLSSOO
  43.      _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, publication SR-2138, for the
  44.      printed version of this man page.
  45.  
  46.